VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Drawing Namespace / DrawingEngine Class / DrawLines Methods / DrawLines(IDrawingPen,PointF[],DrawingLineCap,DrawingLineCap) Method
Syntax Requirements SeeAlso
In This Topic
    DrawLines(IDrawingPen,PointF[],DrawingLineCap,DrawingLineCap) Method (DrawingEngine)
    In This Topic
    Draws the series of line segments, which connect an array of System.Drawing.PointF structures with specified line caps.
    Syntax
    'Declaration
    
    Public Overloads Sub DrawLines( _
    ByVal pen
    The pen that determines the color, width, and style of the lines.
    As IDrawingPen, _
    ByVal points
    Array of System.Drawing.PointF structures, which represent the points to connect.
    () As System.Drawing.PointF, _
    ByVal startCap
    A line cap that should be used for drawing of start cap of line.
    As DrawingLineCap, _
    ByVal endCap
    A line cap that should be used for drawing of end cap of line.
    As DrawingLineCap _
    )
    public void DrawLines(
    IDrawingPen pen,
    System.Drawing.PointF[] points,
    DrawingLineCap startCap,
    DrawingLineCap endCap
    )
    public: void DrawLines(
    IDrawingPen* pen,
    System.Drawing.PointF[]* points,
    DrawingLineCap* startCap,
    DrawingLineCap* endCap
    )
    public:
    void DrawLines(
    IDrawingPen^ pen,
    array<System.Drawing.PointF>^ points,
    DrawingLineCap^ startCap,
    DrawingLineCap^ endCap
    )

    Parameters

    pen
    The pen that determines the color, width, and style of the lines.
    points
    Array of System.Drawing.PointF structures, which represent the points to connect.
    startCap
    A line cap that should be used for drawing of start cap of line.
    endCap
    A line cap that should be used for drawing of end cap of line.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also